[dbo].[BAEFieldDesignSectionLookupInsert]
SQLServer
>
iMIS1521GA
>
Stored Procedures
> dbo.BAEFieldDesignSectionLookupInsert
Properties
Parameters
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@TableName
varchar(30)
30
@FieldName
varchar(30)
30
@FieldSectionId
int
4
@SortOrder
int
4
SQL Script
create
procedure
[dbo]
.
[BAEFieldDesignSectionLookupInsert]
@TableName
as
varchar
(
30
),
@FieldName
AS
varchar
(
30
),
@FieldSectionId
AS
int
,
@SortOrder
AS
int
AS
INSERT
INTO
FieldDesignSectionLookup
(
TableName
,
FieldName
,
FieldSectionId
,
SortOrder
)
VALUES
(
@TableName
,
@FieldName
,
@FieldSectionId
,
@SortOrder
);
GO
Uses
[dbo].[FieldDesignSectionLookup]
dbo